home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / pmake / RCS / shx.mk,v < prev    next >
Encoding:
Text File  |  1988-03-25  |  657 b   |  41 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @@;
  6.  
  7.  
  8. 1.1
  9. date     88.03.24.19.48.55;  author deboor;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @Makefile to specify a shell that prints each command as executed, rather
  16. than as parsed.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @#
  27. # This is a shell specification to have the bourne shell echo the commands
  28. # just before executing them, rather than when it reads them. Useful if you
  29. # want to see how variables are being expanded, etc.
  30. #
  31. .SHELL     : path=/bin/sh \
  32.     quiet="set -" \
  33.     echo="set -x" \
  34.     filter="+ set - " \
  35.     echoFlag=x \
  36.     errFlag=e \
  37.     hasErrCtl=yes \
  38.     check="set -e" \
  39.     ignore="set +e"
  40. @
  41.